home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / manual-p / olxvman.tgz / olxvman.tar / olxvman / _install / install_unbundled < prev    next >
Text File  |  1990-12-18  |  2KB  |  58 lines

  1. #!/bin/sh
  2. #set -x 
  3. # @(#)install_unbundled    4.5  10/20/88
  4. #       Copyright (c) 1988, Sun Microsystems, Inc.  All Rights Reserved.
  5. #       Sun considers its source code as an unpublished, proprietary
  6. #       trade secret, and it is available only under strict license
  7. #       provisions.  This copyright notice is placed here only to protect
  8. #       Sun in the event the source is deemed a published work.  Dissassembly,
  9. #       decompilation, or other means of reducing the object code to human
  10. #       readable form is prohibited by the license agreement under which
  11. #       this code is provided to the user or company in possession of this
  12. #       copy.
  13. #
  14. #       RESTRICTED RIGHTS LEGEND: Use, duplication, or disclosure by the
  15. #       Government is subject to restrictions as set forth in subparagraph
  16. #       (c)(1)(ii) of the Rights in Technical Data and Computer Software
  17. #       clause at DFARS 52.227-7013 and in similar clauses in the FAR and
  18. #       NASA FAR Supplement.
  19. #
  20. # File: install_unbundled
  21. # Description: 
  22. #     This script begins installation by calling the template script
  23. #    and logging the session.
  24. #    This can be executed directly or called from extract_unbundled.
  25. #    No modification to this script is necessary.
  26. #
  27. ##########################################################################
  28. # install_dir does not change
  29. PATH=/usr/ucb:/bin:/usr/bin:/etc:/usr/etc
  30. export PATH
  31. install_dir="/usr/tmp/unbundled"
  32. export install_dir
  33.  
  34. . ${install_dir}/install_parameters
  35. LOGFILE="$install_dir/${SCRIPT_NAME}.log"
  36. export LOGFILE
  37. SOFT_INVENT="$install_dir/Unbundled_Inventory"
  38.  
  39. #  Create the unbundled directory for logs
  40. if [ ! -d $install_dir ]
  41. then
  42.         mkdir $install_dir
  43.         if [ "$?" -ne 0 ]
  44.         then
  45.                 echo "$0 : Unable to create unbundled logging directory"
  46.                 exit 1
  47.         fi
  48.     chmod a+w $install_dir
  49.     touch $SOFT_INVENT
  50.     chmod a+w $SOFT_INVENT
  51. fi
  52.  
  53. # execute script and redirect output to $script_name.log
  54. echo "Invoking ${install_dir}/${SCRIPT_NAME}; log file is $LOGFILE"
  55. ${install_dir}/${SCRIPT_NAME} $* 2>&1 | tee -a $LOGFILE
  56.  
  57.